37 lines
653 B
JSON
37 lines
653 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES6",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"allowJs": false,
|
|
"noImplicitAny": true,
|
|
"strict": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"~*": [
|
|
".*"
|
|
],
|
|
"#components/*": [
|
|
"./controllers/*"
|
|
],
|
|
"#controllers/*": [
|
|
"./controllers/*"
|
|
],
|
|
"#pkg/*": [
|
|
"./packages/*"
|
|
],
|
|
"#styles/*": [
|
|
"./styles/*"
|
|
],
|
|
"#types/*": [
|
|
"./types/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"./**/*.ts",
|
|
"./**/*.svelte"
|
|
]
|
|
}
|