mirror of
https://github.com/Adamcake/Bolt.git
synced 2026-04-17 15:56:53 -04:00
28 lines
735 B
JSON
28 lines
735 B
JSON
{
|
|
"extends": "@tsconfig/svelte/tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "Node",
|
|
/**
|
|
* 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.
|
|
*/
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"isolatedModules": true,
|
|
"paths": {
|
|
"$lib/*": ["./src/lib/*"],
|
|
"$lib": ["./src/lib"],
|
|
"@/*": ["./src/*"],
|
|
"@": ["./src"]
|
|
}
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.js", "src/**/*.svelte"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|