mirror of https://github.com/alibaba/ice.git
25 lines
626 B
JSON
25 lines
626 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"lib": ["DOM", "ESNext", "DOM.Iterable"],
|
|
"jsx": "react-jsx",
|
|
"moduleResolution": "node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": false,
|
|
"importHelpers": true,
|
|
"strictNullChecks": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"ice": [".ice"]
|
|
}
|
|
},
|
|
"include": ["src", ".ice"],
|
|
"exclude": ["build"]
|
|
} |