mirror of
https://github.com/BradNut/gQuery
synced 2025-09-08 17:40:18 +00:00
27 lines
798 B
JSON
27 lines
798 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"module": "es2020",
|
||
|
|
"lib": ["es2020", "DOM"],
|
||
|
|
"outDir": "./dist",
|
||
|
|
"target": "es2020",
|
||
|
|
/**
|
||
|
|
svelte-preprocess cannot figure out whether you have a value or a type, so tell TypeScript
|
||
|
|
to enforce using \`import type\` instead of \`import\` for Types.
|
||
|
|
*/
|
||
|
|
"importsNotUsedAsValues": "error",
|
||
|
|
"isolatedModules": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
/**
|
||
|
|
To have warnings/errors of the Svelte compiler at the correct position,
|
||
|
|
enable source maps by default.
|
||
|
|
*/
|
||
|
|
"sourceMap": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"forceConsistentCasingInFileNames": true
|
||
|
|
},
|
||
|
|
"exclude": ["node_modules"],
|
||
|
|
"include": ["src/**/*.d.ts", "src/**/*.js", "src/**/*.ts", "src/codegen.ts"]
|
||
|
|
}
|