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