zipline/tsconfig.json

31 lines
820 B
JSON
Raw Normal View History

2021-06-23 13:20:20 -05:00
{
"compilerOptions": {
"target": "esnext",
"lib": ["dom", "dom.iterable", "esnext"],
2021-06-23 13:20:20 -05:00
"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/*"],
2023-01-06 17:45:48 -05:00
"lib/*": ["lib/*"],
"config/*": ["lib/config/*"],
"utils/*": ["lib/utils/*"]
},
"incremental": true
2021-06-23 13:20:20 -05:00
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules", "dist", ".yarn", ".next"]
}