This commit is contained in:
41
tsconfig.json
Normal file
41
tsconfig.json
Normal file
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"~/*": ["*"],
|
||||
"@/*": ["./src/*"],
|
||||
"/#/*": ["./types/*"],
|
||||
"@vab/*": ["./library/*"],
|
||||
"@gp": ["./library/plugins/vab"]
|
||||
},
|
||||
|
||||
"target": "ES2020",
|
||||
"useDefineForClassFields": true,
|
||||
"module": "ESNext",
|
||||
"lib": ["ES2020", "DOM", "DOM.Iterable", "scripthost"],
|
||||
"skipLibCheck": true,
|
||||
|
||||
/* Bundler mode */
|
||||
"allowJs": true,
|
||||
"moduleResolution": "node",
|
||||
"allowImportingTsExtensions": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"esModuleInterop": true,
|
||||
"resolveJsonModule": true,
|
||||
"isolatedModules": true,
|
||||
"noEmit": true,
|
||||
"jsx": "preserve",
|
||||
},
|
||||
"include": [
|
||||
"src/**/*.ts",
|
||||
"src/**/*.tsx",
|
||||
"src/**/*.vue",
|
||||
"mock/**/*.ts",
|
||||
"types/**/*.d.ts",
|
||||
"library/**/*.ts",
|
||||
"library/**/*.tsx",
|
||||
"library/**/*.vue",
|
||||
"test/**/*.ts"
|
||||
],
|
||||
"exclude": ["node_modules", "library/build/chainWebpack"]
|
||||
}
|
||||
Reference in New Issue
Block a user