34 lines
585 B
JSON
34 lines
585 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "ES6",
|
||
|
"module": "ESNext",
|
||
|
"moduleResolution": "node",
|
||
|
"allowJs": true,
|
||
|
"noImplicitAny": true,
|
||
|
"strict": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"esModuleInterop": true,
|
||
|
"baseUrl": "./",
|
||
|
"paths": {
|
||
|
"~*": [
|
||
|
".*"
|
||
|
],
|
||
|
"@styles/*": [
|
||
|
"../assets/styles/*"
|
||
|
],
|
||
|
"@controllers*": [
|
||
|
"./controllers/*"
|
||
|
],
|
||
|
"@packages/*": [
|
||
|
"./packages/*"
|
||
|
],
|
||
|
"#types/*": [
|
||
|
"./types/*"
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"include": [
|
||
|
"./**/*.ts",
|
||
|
],
|
||
|
}
|