| 12345678910111213141516171819202122232425262728293031323334 |
- {
- "compilerOptions": {
- "moduleResolution": "node",
- "outDir": "public/dist",
- "target": "es5",
- "lib": ["es6", "dom"],
- "rootDir": "public/",
- "jsx": "react",
- "module": "esnext",
- "declaration": false,
- "allowSyntheticDefaultImports": true,
- "inlineSourceMap": true,
- "sourceMap": false,
- "noEmitOnError": false,
- "emitDecoratorMetadata": false,
- "experimentalDecorators": false,
- "noImplicitReturns": true,
- "noImplicitThis": false,
- "noImplicitUseStrict":false,
- "noImplicitAny": false,
- "noUnusedLocals": true,
- "baseUrl": "public",
- "paths": {
- "app": ["app"]
- }
- },
- "include": [
- "public/app/**/*.ts",
- "public/app/**/*.tsx",
- "public/test/**/*.ts"
- ],
- "exclude": [
- ]
- }
|