Files
netbird-dashboard/tsconfig.json
2024-05-08 14:42:04 +02:00

62 lines
1.1 KiB
JSON

{
"compilerOptions": {
"target": "esnext",
"lib": [
"es6",
"es7",
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": [
"./src/*"
],
"@/config/production": [
"./config.json"
],
"@/config/local": [
"./.local-config.json"
],
"@/config/test": [
"./.test-config.json"
],
"@components/*": [
"./src/components/*"
],
"@hooks/*": [
"./src/hooks/*"
],
"@utils/*": [
"./src/utils/*"
]
}
},
"include": [
"next-env.d.ts",
"src/**/*.ts",
"src/**/*.tsx",
".next/types/**/*.ts"
],
"exclude": [
"node_modules",
"node_modules/@axa-fr/**/*",
]
}