You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
508 B
21 lines
508 B
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"allowJs": true,
|
|
"target": "es6",
|
|
"sourceMap": false,
|
|
"module": "commonjs",
|
|
"experimentalDecorators": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true, // esModuleInterop选项的作用是支持使用import d from 'cjs'的方式引入commonjs包。
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./source/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"./source/**/*",
|
|
"./types/global.d.ts"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|
|
|