40 lines
860 B
JSON
40 lines
860 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
"experimentalDecorators": true,
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
|
|
"paths": {
|
|
"horde/*" : ["./src/*"],
|
|
"hordePlugins": ["./plugins"],
|
|
"hordePlugins/*": ["./plugins/*"]
|
|
},
|
|
|
|
/* Linting */
|
|
"strict": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"strictNullChecks": true
|
|
/*
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
*/
|
|
},
|
|
"include": ["src", "plugins"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|