mirror of
https://gitee.com/dgflash/oops-plugin-framework.git
synced 2026-05-08 03:16:49 +08:00
39 lines
992 B
JSON
39 lines
992 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2017",
|
|
"module": "CommonJS",
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"strictNullChecks": false,
|
|
"noImplicitAny": false,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"experimentalDecorators": true,
|
|
"isolatedModules": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"db://oops-framework/*": [
|
|
"./assets/*"
|
|
]
|
|
},
|
|
"types": [
|
|
"../../temp/declarations/cc.custom-macro",
|
|
"../../temp/declarations/cc",
|
|
"../../temp/declarations/jsb",
|
|
"../../temp/declarations/cc.env"
|
|
]
|
|
},
|
|
"include": [
|
|
"@types/**/*",
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"temp"
|
|
]
|
|
} |