first commit
This commit is contained in:
48
tsconfig.json
Executable file
48
tsconfig.json
Executable file
@@ -0,0 +1,48 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "es5",
|
||||
"module": "commonjs",
|
||||
"strict": true,
|
||||
"jsx": "preserve",
|
||||
"moduleResolution": "node",
|
||||
"experimentalDecorators": true,
|
||||
"emitDecoratorMetadata": true,
|
||||
"esModuleInterop": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"sourceMap": true,
|
||||
"baseUrl": ".",
|
||||
"rootDir": "src",
|
||||
"outDir": "dist/",
|
||||
"paths": {
|
||||
"@/*": ["src/*"],
|
||||
"@type/*": ["src/core/types/*"],
|
||||
"@run/*": ["src/core/run/*"],
|
||||
"@config/*": ["src/core/config/*"],
|
||||
"@controller/*": ["src/core/controller/*"],
|
||||
"@utils/*": ["src/core/utils/*"],
|
||||
"@net/*": ["src/core/net/*"],
|
||||
"@model/*": ["src/core/model/*"],
|
||||
"@ipc/*": ["src/core/ipc/*"],
|
||||
"@service/*": ["src/core/service/*"],
|
||||
"@interactive/*": ["src/core/interactive/*"],
|
||||
"@img/*": ["src/application/assets/img/*"],
|
||||
"@annotation/*": ["src/core/annotation/*"]
|
||||
},
|
||||
"lib": [
|
||||
"esnext",
|
||||
"dom",
|
||||
"dom.iterable",
|
||||
"scripthost"
|
||||
]
|
||||
},
|
||||
"include": [
|
||||
"src/**/*.ts",
|
||||
"src/**/*.tsx",
|
||||
"src/**/*.vue",
|
||||
"tests/**/*.ts",
|
||||
"tests/**/*.tsx"
|
||||
],
|
||||
"exclude": [
|
||||
"node_modules"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user