2023-06-09 18:21:18 +10:00
|
|
|
{
|
|
|
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
|
|
|
"display": "Default",
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"alwaysStrict": true,
|
|
|
|
|
"composite": false,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"inlineSources": false,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
|
"preserveWatchOutput": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"strict": true,
|
2024-12-05 22:14:47 +09:00
|
|
|
"strictNullChecks": true,
|
2023-08-01 17:34:17 +10:00
|
|
|
"target": "ES2018"
|
2023-06-09 18:21:18 +10:00
|
|
|
},
|
2023-08-01 17:34:17 +10:00
|
|
|
"include": ["**/*.ts", "**/*.tsx", "**/.d.ts"],
|
2023-06-09 18:21:18 +10:00
|
|
|
"exclude": ["node_modules"]
|
|
|
|
|
}
|