mirror of
https://gitee.com/dgflash/oops-plugin-framework.git
synced 2026-05-09 03:46:04 +08:00
32 lines
791 B
JSON
32 lines
791 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2017",
|
|
"module": "CommonJS",
|
|
"outDir": "./dist",
|
|
"rootDir": "./",
|
|
"strict": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"experimentalDecorators": true,
|
|
"isolatedModules": true,
|
|
"types": [
|
|
"./temp/declarations/cc.custom-macro",
|
|
"./temp/declarations/cc",
|
|
"./temp/declarations/jsb",
|
|
"./temp/declarations/cc.env"
|
|
]
|
|
},
|
|
"include": [
|
|
"assets/**/*",
|
|
"src/**/*",
|
|
"typedoc.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"temp"
|
|
]
|
|
} |