webpack/tsconfig.json

23 lines
419 B
JSON
Raw Permalink Normal View History

2018-03-26 00:07:41 +08:00
{
"compilerOptions": {
"target": "ES2017",
"module": "commonjs",
"lib": ["es2017", "dom"],
"allowJs": true,
"checkJs": true,
"noEmit": true,
2025-03-11 22:20:50 +08:00
"strict": true,
"types": ["node"],
"esModuleInterop": true
},
2018-05-08 12:04:57 +08:00
"include": [
"declarations.d.ts",
"declarations/*.d.ts",
"schemas/**/*.json",
2018-05-08 12:04:57 +08:00
"bin/*.js",
"lib/**/*.js",
"tooling/**/*.js",
"setup/**/*.js"
2018-05-08 12:04:57 +08:00
]
2018-03-26 00:07:41 +08:00
}