be7ea8f3f7
This also refactors a couple CSS stylesheets to be referenced directly in the HTML files. And it removes any CSS imports from src/browser files.
24 lines
686 B
JSON
24 lines
686 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2020",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"outDir": "./out",
|
|
"declaration": false,
|
|
"experimentalDecorators": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"sourceMap": true,
|
|
"tsBuildInfoFile": "./.cache/tsbuildinfo",
|
|
"incremental": true,
|
|
"typeRoots": ["./node_modules/@types", "./typings", "./test/node_modules/@types"],
|
|
"downlevelIteration": true
|
|
},
|
|
"include": ["./src/**/*.ts"],
|
|
"exclude": ["/test", "/lib", "/ci", "/doc"]
|
|
}
|