plane/apps/www/tsconfig.json

59 lines
1.0 KiB
JSON
Raw Normal View History

2022-12-20 19:26:19 +00:00
{
"compilerOptions": {
"baseUrl": ".",
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"paths": {
"@components/*": [
"components/*"
],
"@layouts/*": [
"layouts/*"
],
"@lib/*": [
"lib/*"
],
"@config/*": [
"config/*"
],
"@styles/*": [
"styles/*"
],
"@constants/*": [
"constants/*"
],
"@icons/*": [
"icons/*"
],
"@configuration/*": [
"configuration/*"
]
},
"incremental": true
},
"exclude": [
"node_modules"
],
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"next.config.js"
]
}