mirror of
https://github.com/usatiuk/writer.git
synced 2025-10-28 16:07:49 +01:00
20 lines
479 B
JSON
20 lines
479 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["es2017", "dom"],
|
|
"jsx": "react",
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"outDir": "./dist",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"sourceMap": true,
|
|
"noImplicitAny": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"~*": ["./src/*"]
|
|
}
|
|
}
|
|
}
|