spb/spboucher.ai Public
spboucher.ai — personal website of Simon-Pierre Boucher.
TypeScript 93.4%
HTML 5.5%
CSS 1%
1// tsconfig.json2// spboucher.ai Web3// Author: Simon-Pierre Boucher4// Mail: contact@spboucher.ai5{6 "compilerOptions": {7 "target": "ES2022",8 "lib": [9 "dom",10 "dom.iterable",11 "esnext"12 ],13 "allowJs": true,14 "skipLibCheck": true,15 "strict": true,16 "noEmit": true,17 "allowImportingTsExtensions": true,18 "esModuleInterop": true,19 "module": "esnext",20 "moduleResolution": "bundler",21 "resolveJsonModule": true,22 "isolatedModules": true,23 "jsx": "react-jsx",24 "incremental": true,25 "plugins": [26 {27 "name": "next"28 }29 ],30 "paths": {31 "@/*": [32 "./*"33 ]34 }35 },36 "include": [37 "next-env.d.ts",38 "**/*.ts",39 "**/*.tsx",40 ".next/types/**/*.ts",41 ".next/dev/types/**/*.ts"42 ],43 "exclude": [44 "node_modules"45 ]46}47