zipline/tsconfig.json

53 lines
953 B
JSON
Raw Normal View History

2021-06-23 13:20:20 -05:00
{
"compilerOptions": {
"target": "esnext",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"outDir": "./dist",
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"noEmit": true,
"baseUrl": "src",
"paths": {
"components/*": [
"components/*"
],
"hooks/*": [
"lib/hooks/*"
],
"middleware/*": [
"lib/middleware/*"
],
"lib/*": [
"lib/*"
]
},
"incremental": true
2021-06-23 13:20:20 -05:00
},
"include": [
"next-env.d.ts",
"zip-env.d.ts",
2021-06-23 13:20:20 -05:00
"**/*.ts",
"**/*.tsx",
2022-07-10 00:38:53 -05:00
"**/**/*.ts",
"**/**/*.tsx",
2021-06-23 13:20:20 -05:00
"prisma/seed.ts"
],
"exclude": [
2022-06-20 19:40:36 -05:00
"node_modules",
"dist",
".yarn",
".next",
2021-06-23 13:20:20 -05:00
]
2022-06-20 19:40:36 -05:00
}