source: tsconfig.json

main
Last change on this file was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 841 bytes
RevLine 
[5d6f37a]1{
2 "compilerOptions": {
3 "baseUrl": ".",
4 "target": "es5",
5 "lib": ["dom", "dom.iterable", "esnext"],
6 "strict": true,
7 "noEmit": true,
8 "allowJs": true,
9 "jsx": "preserve",
10 "module": "esnext",
11 "incremental": true,
12 "skipLibCheck": true,
13 "noImplicitAny": true,
14 "noImplicitThis": true,
15 "esModuleInterop": true,
16 "isolatedModules": true,
17 "strictNullChecks": true,
18 "resolveJsonModule": true,
19 "moduleResolution": "node",
20 "noFallthroughCasesInSwitch": true,
21 "useUnknownInCatchVariables": false,
22 "allowSyntheticDefaultImports": true,
23 "forceConsistentCasingInFileNames": true,
24 "plugins": [
25 {
26 "name": "next"
27 }
28 ]
29 },
30 "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "prisma/seed.js"],
31 "exclude": ["node_modules"]
32}
Note: See TracBrowser for help on using the repository browser.