47 lines
869 B
JSON
47 lines
869 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"experimentalDecorators": true,
|
|
"useDefineForClassFields": false,
|
|
"module": "ESNext",
|
|
"lib": [
|
|
"ES2022",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
],
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"types": [
|
|
"node",
|
|
"jest"
|
|
],
|
|
"moduleResolution": "bundler",
|
|
"isolatedModules": true,
|
|
"moduleDetection": "force",
|
|
"allowJs": true,
|
|
"jsx": "react-jsx",
|
|
"typeRoots": [
|
|
"./src/types",
|
|
"./node_modules/@types"
|
|
],
|
|
"paths": {
|
|
"@/*": [
|
|
"./*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"./index.tsx",
|
|
"./src/**/*.ts",
|
|
"./src/**/*.tsx",
|
|
"./src/**/*.d.ts"
|
|
],
|
|
"exclude": [
|
|
|
|
"node_modules"
|
|
],
|
|
"angularCompilerOptions": {
|
|
"disableTypeScriptVersionCheck": true
|
|
}
|
|
} |