TAO/client/tsconfig.json

49 lines
1.1 KiB
JSON
Raw Permalink Normal View History

2023-09-02 04:53:15 +00:00
{
"compilerOptions": {
"target": "es5",
2023-11-17 12:43:19 +00:00
"lib": ["dom", "dom.iterable", "esnext"],
2023-09-02 04:53:15 +00:00
"allowJs": true,
"skipLibCheck": true,
"strict": true,
2024-08-16 09:41:22 +00:00
"forceConsistentCasingInFileNames": true,
2023-11-17 12:43:19 +00:00
"noEmit": true,
"esModuleInterop": true,
2023-09-02 04:53:15 +00:00
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
2023-11-17 12:43:19 +00:00
"jsx": "preserve",
2024-08-16 03:42:44 +00:00
"incremental": true,
2023-09-02 04:53:15 +00:00
},
2023-11-17 12:43:19 +00:00
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
2023-09-02 04:53:15 +00:00
}
2023-11-17 12:43:19 +00:00
// {
// "compilerOptions": {
// "target": "es5",
// "lib": [
// "dom",
// "dom.iterable",
// "esnext",
// "webworker"
// ],
// "allowJs": true,
// "skipLibCheck": true,
// "esModuleInterop": true,
// "allowSyntheticDefaultImports": true,
// "strict": true,
// "forceConsistentCasingInFileNames": true,
// "noFallthroughCasesInSwitch": true,
// "module": "esnext",
// "moduleResolution": "node",
// "resolveJsonModule": true,
// "isolatedModules": true,
// "noEmit": true,
// "jsx": "react-jsx"
// },
// "include": [
// "src"
// ]
// }