You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CADViewComponent/tsconfig.json

34 lines
828 B

{
"compilerOptions": {
"outDir": "./dist",
"sourceMap": true,
"module": "ESNext",
"target": "ES2020",
"noLib": false,
"skipLibCheck": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"verbatimModuleSyntax":true,
/* Bundler mode */
"moduleResolution": "bundler",
"esModuleInterop": true,
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
/* Linting */
// "strict": true,
// "noUnusedLocals": true,
// "noUnusedParameters": true,
// "noFallthroughCasesInSwitch": true,
"jsx": "react",
"experimentalDecorators": true
},
"include": [
"./src/**/*",
"./config/**/*"
]
}