1
0
Fork 0
CubismFramework/tsconfig.json

25 lines
505 B
JSON
Raw Permalink Normal View History

2020-01-30 17:28:13 +08:00
{
"compilerOptions": {
"target": "es5",
"moduleResolution": "node",
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"outDir": "./dist",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
2023-05-25 10:33:53 +08:00
"emitDecoratorMetadata": true,
"noImplicitAny": true,
"useUnknownInCatchVariables": true
2020-01-30 17:28:13 +08:00
},
"include": [
"src/**/*.ts",
"../Core/*.ts"
],
"exclude": [
"node_modules",
"dist"
]
}