20 lines
361 B
JSON
20 lines
361 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"sourceMap": true,
|
|
"outDir": "./compiled/js/",
|
|
"allowSyntheticDefaultImports": true,
|
|
"rootDir": "./TypeScript",
|
|
},
|
|
|
|
"include": [
|
|
"./TypeScript/*"
|
|
],
|
|
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/node_modules/*"
|
|
]
|
|
}
|