mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-12 03:01:16 +00:00
33 lines
842 B
Plaintext
33 lines
842 B
Plaintext
{
|
|
"compileOnSave": false,
|
|
"buildOnSave": false,
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"outDir": "build",
|
|
"module": "esnext",
|
|
"target": "es6",
|
|
"jsx": "preserve",
|
|
"jsxFactory": "createElement",
|
|
"moduleResolution": "node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"lib": ["es6", "dom"],
|
|
"sourceMap": true,
|
|
"allowJs": true,
|
|
"rootDir": "./",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": false,
|
|
"importHelpers": true,
|
|
"strictNullChecks": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"noUnusedLocals": true,
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"rax-app": [".rax/index.ts"]
|
|
}
|
|
},
|
|
"include": ["src", ".rax"],
|
|
"exclude": ["node_modules", "build", "public"]
|
|
} |