change module type?

master
Kuba Orlik 4 years ago
parent a5c3258f4f
commit 6961b3df06

@ -1,19 +1,19 @@
{ {
"compilerOptions": { "compilerOptions": {
"module": "esnext", "module": "commonjs",
"moduleResolution": "node", "moduleResolution": "node",
"noImplicitAny": true, "noImplicitAny": true,
"noImplicitThis": true, "noImplicitThis": true,
"strictNullChecks": true, "strictNullChecks": true,
"target": "ES2020", "target": "ES2020",
"declaration": true, "declaration": true,
"esModuleInterop": true, "esModuleInterop": true,
"lib": ["es6", "esnext"], "lib": ["es6", "esnext"],
"outDir": "lib", "outDir": "lib",
"checkJs": true, "checkJs": true,
"allowJs": true, "allowJs": true,
"declarationDir": "@types", "declarationDir": "@types",
"sourceMap": true "sourceMap": true
}, },
"include": ["src/**/*"] "include": ["src/**/*"]
} }

Loading…
Cancel
Save