24 lines
476 B
JSON
24 lines
476 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "amd",
|
|
"lib": ["es5", "es6", "dom"],
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"outFile": "../js/bundle.js",
|
|
"target": "es5",
|
|
"sourceMap": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitReturns": true,
|
|
"strict": true,
|
|
"sourceRoot": "../js-source",
|
|
"rootDir": ".",
|
|
"skipLibCheck": true,
|
|
"baseUrl": "."
|
|
},
|
|
"include": [
|
|
"./**/*.ts"
|
|
],
|
|
"exclude": [
|
|
]
|
|
}
|