123456789101112131415161718192021222324252627282930313233 |
- {
- "compilerOptions": {
- "target": "es5",
- "module": "commonjs",
- "moduleResolution": "node",
- "sourceMap": true,
- "emitDecoratorMetadata": true,
- "experimentalDecorators": true,
- "removeComments": false,
- "noImplicitAny": false,
- "skipLibCheck": true,
- "suppressImplicitAnyIndexErrors": true,
- "outDir": "target/www/app",
- "lib": ["es7", "dom"],
- "typeRoots": [
- "node_modules/@types"
- ],
- "baseUrl": "./",
- "paths": {
- "app/*": ["src/main/webapp/app/*"]
- },
- "importHelpers": true,
- "allowJs": true
- },
- "include": [
- "src/main/webapp/app",
- "src/test/javascript/"
- ],
- "exclude": [
- "node_modules"
- ]
- }
|