| 12345678910111213141516171819202122232425262728293031 |
- {
- "compilerOptions": {
- "sourceMap": true,
- "declaration": true,
- "outDir": "public_gen",
- "noImplicitAny": false,
- "target": "es5",
- "lib": ["es6", "dom"],
- "rootDir": "public/",
- "module": "system",
- "jsx": "react",
- "noEmitOnError": true,
- "emitDecoratorMetadata": true,
- "experimentalDecorators": true,
- "noImplicitReturns":false,
- "noImplicitThis": false,
- "noImplicitUseStrict":false,
- "noUnusedLocals":false,
- "moduleResolution": "classic"
- },
- "include": [
- "public/app/**/*.ts",
- "public/app/**/*.tsx",
- "public/test/**/*.ts"
- ],
- "exclude": [
- "public/vendor/**/*",
- "public/**/*.d.ts"
- ]
- }
|