docs/tsconfig.json
Rainnny7 1614889a62
Some checks failed
Deploy / deploy (ubuntu-latest, 2.44.0) (push) Failing after 19s
add a config
Took 52 minutes
2024-10-09 16:30:22 -04:00

50 lines
844 B
JSON

{
"compilerOptions": {
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": [
"./src/*"
],
"@/config": [
"./src/app/config.ts"
],
"@/types/*": [
"./src/app/types/*"
],
"@/configJson": [
"./config.json"
]
},
"target": "ES2017"
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}