27 lines
630 B
JSON
27 lines
630 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2020",
|
||
|
|
"experimentalDecorators": true,
|
||
|
|
"useDefineForClassFields": false,
|
||
|
|
"module": "ESNext",
|
||
|
|
"lib": [ "ES2020", "DOM", "DOM.Iterable" ],
|
||
|
|
"skipLibCheck": true,
|
||
|
|
|
||
|
|
/* Bundler mode */
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"allowImportingTsExtensions": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"moduleDetection": "force",
|
||
|
|
"noEmit": true,
|
||
|
|
|
||
|
|
/* Linting */
|
||
|
|
"strict": true,
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
|
||
|
|
"types": [ "@umbraco-cms/backoffice/extension-types" ]
|
||
|
|
},
|
||
|
|
"include": [ "src" ]
|
||
|
|
}
|