mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 22:34:53 +08:00
35 lines
821 B
JSON
35 lines
821 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"rootDir": "./src",
|
|
"outDir": "./dist",
|
|
|
|
/* Construct3 specific requirements */
|
|
"target": "ES2021",
|
|
"module": "ES2022",
|
|
"esModuleInterop": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
/* Standard settings from your base but customized for Construct3 */
|
|
"noImplicitAny": true,
|
|
"preserveConstEnums": true,
|
|
"inlineSources": false,
|
|
"inlineSourceMap": false,
|
|
"lib": ["DOM", "ES2015", "ScriptHost"],
|
|
"declaration": false,
|
|
"moduleResolution": "node",
|
|
"skipLibCheck": true,
|
|
"strict": true
|
|
},
|
|
"include": ["src/**/*.ts", "ts-defs/**/*.d.ts", "spine.d.ts"],
|
|
"exclude": ["dist/**/*.d.ts"],
|
|
"references": [
|
|
{
|
|
"path": "../spine-core"
|
|
},
|
|
{
|
|
"path": "../spine-construct3-lib"
|
|
}
|
|
]
|
|
}
|