2022-04-01 18:45:11 +03:00
|
|
|
{
|
2023-02-25 19:46:33 +03:00
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es2015",
|
|
|
|
"module": "commonjs",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"preserveConstEnums": true,
|
2023-06-08 08:15:57 +03: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 07:37:08 +03:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
2023-06-16 08:01:51 +03:00
|
|
|
"@/*": ["./*"],
|
|
|
|
"@element/*": ["./src/element/*"],
|
|
|
|
"@component/*": ["./src/component/*"],
|
|
|
|
"@styleTree/*": ["./src/styleTree/*"],
|
|
|
|
"@theme/*": ["./src/theme/*"],
|
|
|
|
"@themes/*": ["./src/themes/*"],
|
|
|
|
"@util/*": ["./src/util/*"]
|
2023-06-16 07:37:08 +03:00
|
|
|
}
|
2023-02-25 19:46:33 +03:00
|
|
|
},
|
2023-06-16 08:01:51 +03:00
|
|
|
"exclude": ["node_modules"]
|
2022-04-06 18:28:56 +03:00
|
|
|
}
|