my-notes-viewer/tsconfig.json

25 lines
690 B
JSON
Raw Permalink Normal View History

2021-03-22 15:59:05 +01:00
{
"extends": "@tsconfig/svelte/tsconfig.json",
2022-02-26 11:09:53 +01:00
"include": ["src/**/*", "types/**/*", "tibi-types", "api/**/*"],
2021-03-22 15:59:05 +01:00
"compilerOptions": {
"module": "esnext",
2021-09-14 14:45:47 +02:00
"typeRoots": ["./node_modules/@types", "./types"],
2021-03-22 15:59:05 +01:00
"target": "esnext",
"moduleResolution": "node",
"jsx": "preserve",
"noEmit": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"useDefineForClassFields": true,
"allowSyntheticDefaultImports": true,
2021-09-14 14:45:47 +02:00
"importsNotUsedAsValues": "error",
"allowJs": true,
2021-12-08 12:56:19 +01:00
"checkJs": true,
"preserveValueImports": true
2021-03-22 15:59:05 +01:00
}
}