micro-editor
Version:
1. npm install
31 lines • 520 B
JSON
{
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/",
"sourceMap": true,
"noImplicitAny": true,
"module": "ESNext",
"target": "es2015",
"jsx": "react",
"allowJs": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"moduleResolution": "node",
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"es2015",
"dom"
],
},
"include": [
"./src/**/*"
],
"exclude": [
"node_modules",
"**/*.spec.ts"
]
}