mirror of
https://github.com/warp-tech/warpgate.git
synced 2024-11-10 09:12:56 +08:00
43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"extends": "@tsconfig/svelte/tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"useDefineForClassFields": true,
|
|
"module": "esnext",
|
|
"resolveJsonModule": true,
|
|
"strictNullChecks": true,
|
|
"baseUrl": ".",
|
|
"preserveValueImports": false,
|
|
"noUnusedLocals": false,
|
|
/**
|
|
* Typecheck JS in `.svelte` and `.js` files by default.
|
|
* Disable checkJs if you'd like to use dynamic types in JS.
|
|
* Note that setting allowJs false does not prevent the use
|
|
* of JS in `.svelte` files.
|
|
*/
|
|
"types": [],
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"paths": {
|
|
"*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*.d.ts",
|
|
"src/**/*.ts",
|
|
"src/*.ts",
|
|
"src/**/*.js",
|
|
"src/**/*.svelte"
|
|
],
|
|
"exclude": [
|
|
"node_modules/@types/node/**",
|
|
"src/*/lib/api-client",
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "./tsconfig.node.json"
|
|
}
|
|
]
|
|
}
|