mirror of
https://github.com/caasion/holos.git
synced 2026-07-22 06:57:40 +00:00
39 lines
746 B
JSON
39 lines
746 B
JSON
{
|
|
"compilerOptions": {
|
|
"verbatimModuleSyntax": true,
|
|
"rootDir": "src",
|
|
"outDir": ".",
|
|
"baseUrl": ".",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES2018",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"strictNullChecks": true,
|
|
"noEmitOnError": false,
|
|
// "esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"skipLibCheck": true,
|
|
"lib": [
|
|
"DOM",
|
|
"ES5",
|
|
"ES6",
|
|
"ES7",
|
|
"ES2018"
|
|
]
|
|
},
|
|
"include": [
|
|
"**/*.ts",
|
|
"global.d.ts",
|
|
"**/*.svelte"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"build"
|
|
]
|
|
}
|