| 123456789101112131415161718192021222324252627282930313233343536 |
- {
- "compilerOptions": {
- "moduleResolution": "node",
- "outDir": "public/dist",
- "target": "es5",
- "lib": ["es6", "dom"],
- "rootDir": "public/",
- "jsx": "react",
- "module": "esnext",
- "declaration": false,
- "allowSyntheticDefaultImports": true,
- "esModuleInterop": true,
- "forceConsistentCasingInFileNames": true,
- "importHelpers": true,
- "noEmitHelpers": true,
- "removeComments": false,
- "inlineSourceMap": false,
- "sourceMap": true,
- "noEmitOnError": false,
- "emitDecoratorMetadata": false,
- "experimentalDecorators": true,
- "noImplicitReturns": true,
- "noImplicitThis": true,
- "noImplicitUseStrict": false,
- "noImplicitAny": false,
- "noUnusedLocals": true,
- "baseUrl": "public",
- "pretty": true,
- "typeRoots": ["node_modules/@types", "types"],
- "paths": {
- "app": ["app"],
- "sass": ["sass"]
- }
- },
- "include": ["public/app/**/*.ts", "public/app/**/*.tsx", "public/test/**/*.ts"]
- }
|