mirror of
https://github.com/kayleegeorge/zk-chat.git
synced 2026-01-10 14:48:14 -05:00
25 lines
608 B
JSON
25 lines
608 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES5",
|
|
"module": "ES6",
|
|
"moduleResolution": "node",
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitAny": false,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noEmitOnError": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"declaration": true,
|
|
"declarationDir": "./dist/types",
|
|
"strict": true,
|
|
"typeRoots": [
|
|
"node_modules/@types",
|
|
"src/types",
|
|
],
|
|
}
|
|
} |