Skip to content
tsconfig-aot.json 611 B
Newer Older
wangqinghua's avatar
wangqinghua committed
{
    "compilerOptions": {
        "target": "es5",
        "module": "es2015",
        "moduleResolution": "node",
        "sourceMap": false,
        "emitDecoratorMetadata": true,
        "experimentalDecorators": true,
        "removeComments": false,
        "noImplicitAny": false,
        "suppressImplicitAnyIndexErrors": true,
        "skipLibCheck": true,
        "outDir": "build/www/app",
        "lib": ["es7", "dom"],
        "typeRoots": [
            "node_modules/@types"
        ]
    },
    "angularCompilerOptions": {
        "genDir": "build/aot",
        "skipMetadataEmit" : true
    }
}