mirror of https://github.com/alibaba/ice.git
42 lines
843 B
JSON
42 lines
843 B
JSON
{
|
|
"compileOnSave": false,
|
|
"buildOnSave": false,
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"outDir": "build",
|
|
"module": "esnext",
|
|
"target": "es6",
|
|
"jsx": "react",
|
|
"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,
|
|
"types": ["node"],
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
],
|
|
"ice": [
|
|
".ice/index.ts"
|
|
],
|
|
"ice/*": [
|
|
".ice/pages/*"
|
|
]
|
|
}
|
|
}
|
|
}
|