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