This repository has been archived on 2024-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
wgdash/tsconfig.json

43 lines
807 B
JSON
Raw Normal View History

{
"compilerOptions": {
"baseUrl": "src",
"target": "es2020",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"paths": {
"@public/*": [
"../public/*"
]
},
"typeRoots": [
"types",
"../node_modules/@types"
],
"allowJs": false,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"incremental": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"emitDecoratorMetadata": true,
"experimentalDecorators": true
},
"include": [
"next-env.d.ts",
"src/**/*.ts",
"src/**/*.tsx"
],
"exclude": [
"node_modules"
]
}