chatgpt-web/tsconfig.json

13 lines
396 B
JSON
Raw Normal View History

2023-03-03 03:12:55 +09:00
{
"extends": "@tsconfig/svelte/tsconfig.json",
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"module": "ESNext",
"resolveJsonModule": true,
2023-03-21 17:00:46 +09:00
"strictNullChecks": true
2023-03-03 03:12:55 +09:00
},
"include": ["src/**/*.d.ts", "src/**/*.ts", "src/**/*.js", "src/**/*.svelte", "vite.config.ts", "svelte.config.js"],
2023-03-03 03:12:55 +09:00
"references": [{ "path": "./tsconfig.node.json" }]
}