Files
kintone-plugin-docx/tsconfig.json

29 lines
627 B
JSON

{
"compilerOptions": {
"lib": ["DOM", "ES2020"],
"jsx": "react-jsx",
"target": "ES2020",
"noEmit": true,
"skipLibCheck": true,
"useDefineForClassFields": true,
/* modules */
"module": "ESNext",
"resolveJsonModule": true,
"moduleResolution": "bundler",
"esModuleInterop": true,
"allowImportingTsExtensions": true,
/* type checking */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true
},
"include": ["src/**/*", "./node_modules/@kintone/dts-gen/kintone.d.ts"],
"ts-node": {
"compilerOptions": {
"module": "CommonJS"
}
}
}