2022-04-01 15:45:11 +00:00
|
|
|
{
|
2023-02-25 16:46:33 +00:00
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es2015",
|
|
|
|
"module": "commonjs",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"preserveConstEnums": true,
|
2023-06-08 05:15:57 +00:00
|
|
|
"sourceMap": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"declaration": true,
|
|
|
|
"strict": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"alwaysStrict": true,
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": false,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"strictPropertyInitialization": false,
|
2023-06-16 04:37:08 +00:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
2023-06-16 05:01:51 +00:00
|
|
|
"@/*": ["./*"],
|
|
|
|
"@element/*": ["./src/element/*"],
|
|
|
|
"@component/*": ["./src/component/*"],
|
|
|
|
"@styleTree/*": ["./src/styleTree/*"],
|
|
|
|
"@theme/*": ["./src/theme/*"],
|
|
|
|
"@themes/*": ["./src/themes/*"],
|
|
|
|
"@util/*": ["./src/util/*"]
|
2023-06-16 04:37:08 +00:00
|
|
|
}
|
2023-02-25 16:46:33 +00:00
|
|
|
},
|
2023-06-16 05:01:51 +00:00
|
|
|
"exclude": ["node_modules"]
|
2022-04-06 15:28:56 +00:00
|
|
|
}
|