35 lines
666 B
JSON
35 lines
666 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES6",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"allowJs": false,
|
|
"noImplicitAny": true,
|
|
"strict": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"paths": {
|
|
"~*": [
|
|
"./src/*"
|
|
],
|
|
"@component/*": [
|
|
"./src/Component/*"
|
|
],
|
|
"@framework/*": [
|
|
"./src/Framework/*"
|
|
],
|
|
"@pkg/*": [
|
|
"./src/Framework/Package/*"
|
|
],
|
|
"#types/*": [
|
|
"./src/Framework/Types/*",
|
|
],
|
|
"#const/*": [
|
|
"./src/Framework/Constants/*",
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"./src/**/*.ts"
|
|
]
|
|
}
|